Replace `iff' in doc-strings and comments.
authorGlenn Morris <rgm@gnu.org>
Wed, 8 Aug 2007 07:21:23 +0000 (07:21 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 8 Aug 2007 07:21:23 +0000 (07:21 +0000)
lisp/url/url-auth.el
lisp/url/url-cache.el
lisp/url/url-dav.el
lisp/url/url-file.el
lisp/url/vc-dav.el

index c57a96cc81b896a6c7aba425c2871f8f15d20fdc..030409c339150338955afcc200b4f9a8c6fc301a 100644 (file)
@@ -310,7 +310,7 @@ RATING   a rating between 1 and 10 of the strength of the authentication.
                  url-registered-auth-schemes)))))
 
 (defun url-auth-registered (scheme)
-  ;; Return non-nil iff SCHEME is registered as an auth type
+  "Return non-nil if SCHEME is registered as an auth type."
   (assoc scheme url-registered-auth-schemes))
 
 (provide 'url-auth)
index 8fbe01d472a1b9a512e8e855271832441392489a..6db30eacda97b86a8550ae7459233220c8f7f036 100644 (file)
@@ -186,7 +186,7 @@ Very fast if you have an `md5' primitive function, suitably fast otherwise."
 
 ;;;###autoload
 (defun url-cache-expired (url mod)
-  "Return t iff a cached file has expired."
+  "Return t if a cached file has expired."
   (let* ((urlobj (if (vectorp url) url (url-generic-parse-url url)))
         (type (url-type urlobj)))
     (cond
index afae0041b6801f116f4ad143c57fb473468c2308..b58c16728656e4f06bb1773c16a7cfc4c1ef71af 100644 (file)
@@ -562,7 +562,7 @@ FAILURE-RESULTS is a list of (URL STATUS)."
 
 (defun url-dav-unlock-resource (url lock-token)
   "Release the lock on URL represented by LOCK-TOKEN.
-Returns t iff the lock was successfully released."
+Returns t if the lock was successfully released."
   (declare (special url-http-response-status))
   (let* ((url-request-extra-headers (list (cons "Lock-Token"
                                                (concat "<" lock-token ">"))))
@@ -654,13 +654,13 @@ Returns t iff the lock was successfully released."
          (or (plist-get properties 'DAV:getcontentlength) 0)
 
          ;; file modes as a string like `ls -l'
-         ;; 
+         ;;
          ;; Should be able to build this up from the
          ;; DAV:supportedlock attribute pretty easily.  Getting
          ;; the group info could be impossible though.
          (url-dav-file-attributes-mode-string properties)
 
-         ;; t iff file's gid would change if it were deleted &
+         ;; t if file's gid would change if it were deleted &
          ;; recreated.  No way for us to know that thru DAV.
          nil
 
index e899493f1cede7a40ee689524cbd72b78d9f519c..6e771c9cd6928f2637530230473027c1c66f5138 100644 (file)
@@ -52,7 +52,7 @@ to them."
     found))
 
 (defun url-file-host-is-local-p (host)
-  "Return t iff HOST references our local machine."
+  "Return t if HOST references our local machine."
   (let ((case-fold-search t))
     (or
      (null host)
index ce0d3275a5ff5bb84309792a563feba204a21305..7e9b6606ca4f5912d264604f1a2d8e2a8e58e213 100644 (file)
@@ -31,7 +31,7 @@
 
 ;;; Required functions for a vc backend
 (defun vc-dav-registered (url)
-  "Return t iff URL is registered with a DAV aware server."
+  "Return t if URL is registered with a DAV aware server."
   (url-dav-vc-registered url))
 
 (defun vc-dav-state (url)